Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
streaming extended glob.
use with pull-stream
var pull = require('pull-stream')
var glob = require('pull-glob')
function glob_log (name, pattern) {
pull(glob(pattern), pull.collect(function (err, ary) {
if(err) throw err
console.log('name:', name, 'pattern:', pattern)
console.log(ary)
})
}
glob_log('current dir', '.')
glob_log('js in current dir', '*.js')
glob_log('everything under current dir', '**')
glob_log('all js under current dir', '**/*.js')
glob_log('parent directories', '...')
glob_log('hidden files', '.../.*')
glob_log('available modules', '.../node_modules/*')
glob_log('local package files', '.../{package,component}.json')
because this module uses pull-streams, it's lazy, so you can do queries like the following:
//find the first package.json in a parent directory.
pull(glob('.../package.json'), pull.take(1), log())
And you will retrive only the first item, and will not do any extra IO. This is hugely useful when doing a large traversal...
pull(
glob('**/node_modules/*/package.json'),
pull.collect(function (e, arr) {
console.log(arr)
})
)
MIT
FAQs
extended globs as pull-streams
We found that pull-glob demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.